闘本 8.2 グリッド上を動くロボット
提出
code: txt
def move(cell, x, y):
if x > r or y > c or cell
x
y
== "#":
return
visited.add(x, y)
move(cell, x+1, y)
move(cell x, y-1)